From: Richard M. Stallman Date: Sun, 28 Mar 1993 05:24:23 +0000 (+0000) Subject: (struct frame): New field face_alist. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96664 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fb63ba7de511009bf6e4428f7df9968bf2a24b78;p=emacs.git (struct frame): New field face_alist. --- diff --git a/src/frame.h b/src/frame.h index 0f7ac736545..0ec28119bce 100644 --- a/src/frame.h +++ b/src/frame.h @@ -132,8 +132,14 @@ struct frame Lisp_Object scroll_bars; Lisp_Object condemned_scroll_bars; + /* List of elements to display in the menu bar. + The elements have the form (KEY STRING . nil) to start; + when they are displayed, the hpos of the left edge goes in the cddr. */ Lisp_Object menu_bar_items; + /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */ + Lisp_Object face_alist; + /* The output method says how the contents of this frame are displayed. It could be using termcap, or using an X window. */ enum output_method output_method;